home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / RAND / T0422 / text0020.txt < prev    next >
Encoding:
Text File  |  1997-02-06  |  998 b   |  21 lines

  1.  
  2. > I just read that there is new development tools available for the DSP 56000.
  3. > There are C/C++ compilers, assemblers with pipeline optimizations ans source
  4.                                              ^^^^^^^^^^^^^^^^^^^^^^
  5.  
  6. I think pipeline optimisations will be very difficult to perform for a processor
  7. with absolutely no pipeline variance whatsoever. The pipe is hardwired and cannot
  8. actually be optimised for in any useful way. The only equivalent optimisation
  9. available is to ensure parallel moves do not attempt to reference the same bus
  10. several times in the same instruction - or risk waitstates. There are 4 data busses
  11. so this is not usually a problem. So long as you use assembly that is....
  12.  
  13. As for c compilers - they do exist (I have a copy of micro-c), but are definitely
  14. not recommended if you want to do anything vaguely DSP-like. They do not suit the
  15. processor's parallel capabilities at all.
  16.  
  17. Also, your 32k memory will disappear in no time flat with compiled code....
  18.  
  19. Doug.
  20.  
  21.